libxl: convert libxl_domain_destroy to an async op
authorRoger Pau Monne <roger.pau@citrix.com>
Mon, 23 Jul 2012 12:09:42 +0000 (13:09 +0100)
committerRoger Pau Monne <roger.pau@citrix.com>
Mon, 23 Jul 2012 12:09:42 +0000 (13:09 +0100)
commit225b2010db1b84c223c981a0cd09e548e5fcf93b
treec140f42ff2f297df239ab4a280703471eaf36a2e
parent9770c75ba37df52ad363ac114a8da5bee487b7b1
libxl: convert libxl_domain_destroy to an async op

This change introduces some new structures, and breaks the mutual
dependency that libxl_domain_destroy and libxl__destroy_device_model
had. This is done by checking if the domid passed to
libxl_domain_destroy has a stubdom, and then having the bulk of the
destroy machinery in a separate function (libxl__destroy_domid) that
doesn't check for stubdom presence, since we check for it in the upper
level function. The reason behind this change is the need to use
structures for ao operations, and it was impossible to have two
different self-referencing structs.

All uses of libxl_domain_destroy have been changed, and either
replaced by the new libxl_domain_destroy ao function or by the
internal libxl__domain_destroy that can be used inside an already
running ao.

Signed-off-by: Roger Pau Monne <roger.pau@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
Committed-by: Ian Campbell <ian.campbell@citrix.com>
tools/libxl/libxl.c
tools/libxl/libxl.h
tools/libxl/libxl_create.c
tools/libxl/libxl_device.c
tools/libxl/libxl_dm.c
tools/libxl/libxl_internal.h
tools/libxl/xl_cmdimpl.c
tools/python/xen/lowlevel/xl/xl.c